home *** CD-ROM | disk | FTP | other *** search
/ Otherware / Otherware_1_SB_Development.iso / mac / developm / language / harvest.cpt / Harvest C / DHashLink.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-05  |  240 b   |  16 lines

  1. /*
  2.     DHashLink.h
  3. */
  4.  
  5. #include "DObject.h"
  6. #include "DSymbol.h"
  7.  
  8. class DHashLink : public DObject {
  9.     public:
  10.     DSymbol *theItem;
  11.     DHashLink *next;
  12.     void IHashLink(DSymbol *,DHashLink *);
  13.     DSymbol * SearchChain(char *);
  14.     void Dispose(void);
  15. };
  16.